home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
research
/
lib
/
obsolete
/
listrep.pro
< prev
next >
Wrap
Text File
|
1997-07-08
|
437b
|
24 lines
; $Id: listrep.pro,v 1.2 1997/01/15 04:02:19 ali Exp $
;
; Copyright (c) 1991-1997, Research Systems Inc. All rights
; reserved. Unauthorized reproduction prohibited.
pro ListRep,X,RowNum,Rows,here
; ListRep repairs a matrix that has had data thrown away in Listwise
SX = size(X)
SX1 = SX(1)
count = N_Elements(RowNum)
SX2 = SX(2)+count
X1 = Fltarr( SX1,SX2)
X1(*,here) =X
X1(*,RowNum) = Rows
X =X1
return
end